home *** CD-ROM | disk | FTP | other *** search
/ Champak 123 / (Vol 123) Jan 13 2011.iso / Games / girl_makeover_9.swf / scripts / frame_12 / DoAction.as
Text File  |  2011-01-13  |  399b  |  18 lines

  1. function SetPrintJob()
  2. {
  3.    my_pj = new PrintJob();
  4.    my_pj.start();
  5.    my_pj.addPage("_root",{printAsBitmap:true});
  6.    my_pj.send();
  7.    delete my_pj;
  8. }
  9. stop();
  10. play_b = true;
  11. if(this.girl_mc.x0 and this.girl_mc.y0)
  12. {
  13.    this.girl_mc._x = this.girl_mc.x0;
  14.    this.girl_mc._y = this.girl_mc.y0;
  15.    this.girl_mc._xscale = this.girl_mc._yscale = 100;
  16.    this.girl_mc._rotation = 0;
  17. }
  18.